home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / ODF Release 3 / ODFDev / ODF / Found / FWString / SLLocale.h < prev    next >
Encoding:
Text File  |  1996-12-16  |  1.3 KB  |  57 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                SLLocale.h
  4. //    Release Version:    $ ODF 3 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef SLLOCALE_H
  11. #define SLLOCALE_H
  12.  
  13. #ifndef FWODEXCE_H
  14. #include "FWODExce.h"
  15. #endif
  16.  
  17. #include "FWTxtTyp.xh"
  18.  
  19.  
  20. #ifdef FW_BUILD_WIN
  21. // Default code page
  22. #define FW_kWinLatin1    1252
  23. #endif
  24.  
  25. //========================================================================================
  26. //    Global Functions
  27. //========================================================================================
  28.  
  29. // Export or Import functions for CFM-68K [sfu]
  30.  
  31. #if defined(FW_ODFLIB_IMPORT)
  32. #pragma import on
  33. #elif defined(FW_ODFLIB)
  34. #pragma export on
  35. #endif
  36.  
  37. FW_EXTERN_C_BEGIN
  38.  
  39. FW_Boolean FW_LocaleIsSingleByte(FW_Locale locale);
  40.     // Return true if all characters in this locale are 1 byte wide.
  41.  
  42. FW_Boolean FW_CharIsDoubleByte(const char* p, short offset, const FW_Locale& locale);
  43.     // Return true if the byte at the specified location is the first byte of
  44.     // a double-byte character.
  45.  
  46. FW_EXTERN_C_END
  47.  
  48. // For CFM-68K [sfu]
  49.  
  50. #if defined(FW_ODFLIB_IMPORT)
  51. #pragma import off
  52. #elif defined(FW_ODFLIB)
  53. #pragma export off
  54. #endif
  55.  
  56. #endif
  57.